home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amigappc / libsrc / math / atof.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  101 b   |  8 lines

  1. #include <stdio.h>
  2.  
  3. double atof(const char *nptr)
  4. { double a;
  5.   sscanf(nptr,"%lf",&a);
  6.   return a;
  7. }
  8.